ANDYS MTX BOOT ROM SOURCE
=========================

ROMS
----

I think a normal FDX boot ROM had (although I've not got all the source) :-
	ZMON
		which would boot B:3, C:3
	KDB or SDXKDB
		not sure if this was somehow MTX or FDX specific
	CRT
		80 column driver
	DISC
		FDX disk code

ACPM.ROM was Andys CP/M ROM, which I used in my FDX - it had :-
	AZMON
		ZMON, tweaked for ACPM
		modified to boot F:51, D:13, E:13, B:3, C:3
		because my FDX had lots of memory and 8" and 5.25" drives
	ASIDISC
		taken from SIDISC, tweaked for ACPM
		just the resident portion, not the installer part
		ie: SIDISC was pre-loaded, you didn't need to run SIDISC.COM
		note that the SIDISC driver understands real type 4x Silicon
		disk, as accessed via IO instructions, and type 5x RAM disks,
		which were just MTX memory pages outside the first 64KB
	ASDXKBD
		"decent" MTX keyboard reader, tweaked for ACPM
	ACRT
		the normal 80 column driver, tweaked for ACPM
	ADISC
		the normal FDX disk code, tweaked for ACPM

SCPM.ROM was CP/M on the SDX - it had :-
	SZMON
		basically AZMON with a couple of extras to setup stuff
		needed by SCPM, ie: turn off sound, init VDP screen, setup font
	ASIDISC
		as above
	ASDXKBD
		as above
	ASCRT
		56 column mode, using the MTX VDP chip
		this was the insight that made CP/M on SDX practical
	AFDSC
		the SDX disk code

SCPMF.ROM was CP/M on the SDX, somehow using the FDX disk controller.
It was like SCPM.ROM, except it used ADISC instead of AFDSC.
I suppose it could have been used on an FDX with no 80 column card.
I'm not sure this was ever useful or used.

RCPM.ROM allowed systems without disks to run CP/M, from ROMs - it had :-
	RZMON
		tries to boot F:51
		failing that, it creates a new F: and retries
		it makes F: by copying from the ROMs into RAM
	ASIDISC
		as above
	ASDXKBD
		as above
	ACRT
		as above, 80 column
	AFDSC
		as above, the SDX disk code

RCPMF.ROM was RCPM.ROM, using the FDX disk controller.
I don't think this was ever used.

RCPM.ROM and RCPMF.ROM have disk code in them, but clearly this isn't required.

RSCPM.ROM combines running from ROM and running on SDX - it had :-
	RSZMON
		like RZMON, but with SCPM initialisation
	ASIDISC
		as above
	ASDXKBD
		as abve
	ASCRT
		as above, 56 column
	AFDSC
		as above, the SDX disk code

RSCPMF.ROM was RSCPM.ROM, using the 80 column card and FDX disk controller.
Presumably it was aimed at FDXs without disks.

If using a 512KB RAM disk card, then there was 512KB of memory for the F:51.
If using series 2 MTX, or MTX 2000, then the RAM disk size had to be shrunk,
using S2R.COM or S2R64.COM.

Assembling
----------

I don't have the .ROM files, or the .REL files that are linked to make them.
I think to assemble a .MAC to make the .REL, you M80 file.MAC.
To link .REL files you use L80, see the various .SUB files for examples.
I would try running M80 and L80 under a CP/M emulator.
ZEM is an example of a CP/M emulator that runs on MS/DOS.
